From: Richard M. Stallman Date: Sat, 15 May 1993 21:17:06 +0000 (+0000) Subject: Preload mouse, scroll-bar and select if have multi-frames. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96254 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=369747519d1b6dce5acb50ec20d529a3ed0c96f7;p=emacs.git Preload mouse, scroll-bar and select if have multi-frames. --- diff --git a/lisp/loadup.el b/lisp/loadup.el index bdd438de77d..dc0c393829b 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -52,7 +52,12 @@ (load "window") (garbage-collect) (if (fboundp 'delete-frame) - (load "frame")) + (progn + (load "frame") + (load "mouse") + (garbage-collect) + (load "scroll-bar") + (load "select"))) (garbage-collect) (load "paths.el") ;Don't get confused if someone compiled paths by mistake. (garbage-collect)